home *** CD-ROM | disk | FTP | other *** search
- Path: lrz-muenchen.de!sun2!ua302aa
- From: ua302aa@sun2.lrz-muenchen.de (Kurt Watzka)
- Newsgroups: comp.lang.c
- Subject: Re: Open database.mdb, HOW ?
- Date: 24 Jan 1996 19:22:30 GMT
- Organization: Leibniz-Rechenzentrum, Muenchen (Germany)
- Distribution: world
- Message-ID: <4e60tm$m3r@sparcserver.lrz-muenchen.de>
- References: <3105FA8E.7C00@hobbe.adb.gu.se>
- NNTP-Posting-Host: sun2.lrz-muenchen.de
-
- Peter Bohn <a94bohn@hobbe.adb.gu.se> writes:
-
- >Hello !!!
- >How do I open a *.mdb file created in Access 2.0 with c-coding.
- >I'm sitting here with MS C++ 4.0.
-
- >Get me started with some line please. :)
-
- FILE *fp;
-
- fp = fopen("foo.mdb", "rb");
- if (!fp) {
- /* Handle file opening error */
- }
-
- /* Process file. Note that you will have to look up the format
- of an Access 2.0 file to do that properly */
-
- fclose(fp);
-
- Answer not apropriate for this group: Have a look at ODBC!
-
- Kurt
- --
- | Kurt Watzka Phone : +49-89-2180-6254
- | watzka@stat.uni-muenchen.de
- | ua302aa@sunmail.lrz-muenchen.de
-
-